P0784R7 More constexpr containers VS 2019 16.9 20 P0840R2 [[no_unique_address]] attribute VS 2019 16.9 20 P1064R0 Allowing virtual function calls in constant expressions VS 2019 16.9 20 P1141R2 Yet another approach for constrained declarations VS 2019 16.9 20 P1327R1 Allow...
(const char *s1, const char *s2) 19. { 20. char *result = malloc(strlen(s1)+strlen(s2)+1);//+1 for the null-terminator 21. //in real code you would check for errors in malloc here 22. strcpy(result, s1); 23. strcat(result, s2); 24. return result; 25. } 26. 27. ...
export const prerender = true; export function load({ depends }) { depends('language:current'); export function load() { const gitLog = getAllGitLog(); return { title: m.title(), description: m.description(), og: {}, gitLog: [gitLog[0], gitLog.at(-1)] }; 0 comments on com...
@@ -57,6 +57,8 @@ const ActiveGroups = ({ totalActiveGroups }: ActiveGroupProps) => { <GroupContainer $isFirstPage={isFirstPage} $isLastPage={isLastPage}> {slicedGroups.map((group) => { const { roomId, tags, title, introduce, ownerId, isMember } = group; const allTag = [...
11 changes: 7 additions & 4 deletions11src/baekjoon/containers/SolveView/SolveView.tsx Original file line numberDiff line numberDiff line change Expand Up@@ -290,10 +290,13 @@ const SolveView: React.FC<SolveViewProps> = ({ useEffect(()=>{ ...
const LANGUAGE = sessionStorage.getItem('language'); if (!LANGUAGE) { // 추후 주 언어를 선택해달라는 문구 + 마이페이지로 네비게이트 시키기 return; } const [changedLang, setChangedLang] = useState('python'); const changeLanguage = () =...