[알고리즘] 백준 23235 - The Fastest Sorting Algorithm In The World (C++) [문제 링크] : https://www.acmicpc.net/problem/23235#include using namespace std;int main(){ string S; int N, cnt = 0; while(cin >> N){ if(N == 0){ return 0; } getline(cin, S); cout 알고리즘 2025.01.04