Skip to content

Commit b988cb5

Browse files
authored
Update longest_substring_without_repeating_characters.cpp
* I have done the required changes for the include part. * Thank you.
1 parent f819c2a commit b988cb5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

others/longest_substring_without_repeating_characters.cpp

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,11 +23,11 @@
2323
* Thank you!
2424
**/
2525

26-
#include <iostream> // for input and output read/write.
27-
#include <unordered_map> // for character frequency map.
28-
#include <deque> // for push and pop operations at O(1) time.
29-
#include <string> // for taking string as input.
30-
#include <cassert> // for assert.
26+
#include <iostream> // for IO Operations
27+
#include <unordered_map> // for std::unordered_map
28+
#include <deque> // for std::deque
29+
#include <string> // for string class/string datatype which is taken as input
30+
#include <cassert> // for assert
3131

3232
/**
3333
* @class Longest_Substring

0 commit comments

Comments
 (0)