1.code
import React, { useState } from 'react';
const TodoList = () => {
c...
這章節開始我們會針對sort來詳細介紹各種不同的演算法。這章節會從最簡單的開始,也就是一般人可以想得到的方法。
Bubble Sort
從index = 0開始...
從去年開始就陸陸續續看到關於IT鐵人的文章,感到非常的有興趣,再加上今年剛踏入關於資訊的這個學程,由於第一年參加,也對資訊沒有非常深刻的了解,也不會很技術性的問...
Day 11_輸出 - print( )函式
11-1. 將句子輸出式子:print('把這句輸出')
結果: 把這句輸出
11-2. 將一個值輸出式子:a =...
Day 25_字串 (String)函式1
25-1.轉成字串式子:x = 123print(type(x))print(str(x))print(type(s...
pragma solidity ^0.8.0;
contract SimpleStorage {uint256 private storedData;
func...