Inspiration
To be part of the community
What it does
How we built it
Challenges we ran into
Accomplishments that we're proud of
What we learned
What's next for MLH_GHW
Built With
- passion
MLH Global Hack Week
To be part of the community
Here's a simple coding question i solved in c++ which give count of occurences of letters in a word:
using namespace std;
int main() { string word; cout << "Enter a word: "; cin >> word; unordered_map count; for (char c : word) count[c]++; for (auto& pair : count) cout << pair.first << ": " << pair.second << endl; return 0; }
Leave feedback in the comments!
Log in or sign up for Devpost to join the conversation.
Log in or sign up for Devpost to join the conversation.