Polish the content

This commit is contained in:
krahets
2023-08-21 03:06:53 +08:00
parent 981144e42d
commit f5dda8d99a
19 changed files with 49 additions and 51 deletions

View File

@ -8,7 +8,7 @@
/* 函数 */
int func() {
// do something
// 执行某些操作
return 0;
}

View File

@ -8,7 +8,7 @@
/* 函数 */
int func() {
// do something
// 执行某些操作
return 0;
}

View File

@ -9,7 +9,7 @@ namespace hello_algo.chapter_computational_complexity;
public class space_complexity {
/* 函数 */
static int function() {
// do something
// 执行某些操作
return 0;
}

View File

@ -11,7 +11,7 @@ import '../utils/tree_node.dart';
/* 函数 */
int function() {
// do something
// 执行某些操作
return 0;
}

View File

@ -44,7 +44,7 @@ func printTree(root *treeNode) {
/* 函数 */
func function() int {
// do something...
// 执行某些操作...
return 0
}

View File

@ -12,7 +12,7 @@ import java.util.*;
public class space_complexity {
/* 函数 */
static int function() {
// do something
// 执行某些操作
return 0;
}

View File

@ -10,7 +10,7 @@ const { printTree } = require('../modules/PrintUtil');
/* 函数 */
function constFunc() {
// do something
// 执行某些操作
return 0;
}

View File

@ -12,7 +12,7 @@ from modules import *
def function() -> int:
"""函数"""
# do something
# 执行某些操作
return 0

View File

@ -14,7 +14,7 @@ use tree_node::TreeNode;
/* 函数 */
fn function() ->i32 {
// do something
// 执行某些操作
return 0;
}

View File

@ -9,7 +9,7 @@ import utils
/* */
@discardableResult
func function() -> Int {
// do something
//
return 0
}

View File

@ -10,7 +10,7 @@ import { printTree } from '../modules/PrintUtil';
/* 函数 */
function constFunc(): number {
// do something
// 执行某些操作
return 0;
}

View File

@ -7,7 +7,7 @@ const inc = @import("include");
// 函数
fn function() i32 {
// do something
// 执行某些操作
return 0;
}