Skip to main content
We’ve updated our Terms of Service. A new AI Addendum clarifies how Stack Overflow utilizes AI interactions.
Code Golf

Return to Revisions

2 of 3
added 87 characters in body
Unmitigated
  • 2.9k
  • 1
  • 6
  • 15

Java (JDK), 142 bytes

s->{var m=new java.util.TreeMap();for(var c:s.toLowerCase().replaceAll("[^a-z]","").toCharArray())m.merge(c,1,(a,b)->(int)a+(int)b);return m;}

Try it online!

Saved 9 bytes thanks to Kevin Cruijssen.

Unmitigated
  • 2.9k
  • 1
  • 6
  • 15

AltStyle によって変換されたページ (->オリジナル) /