You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update the code to replace the usage of endl with the newline character \n. While endl is commonly used for newlines, it's considered "old school" or less efficient. Using \n is more lightweight and recommended when just adding a newline.
2025-01-CP/test-02-20001.cpp
Line 45 in 6103ef2
Update the code to replace the usage of
endlwith the newline character\n. Whileendlis commonly used for newlines, it's considered "old school" or less efficient. Using\nis more lightweight and recommended when just adding a newline.