iT邦幫忙

一級屠豬士 的所有留言 412

無法連上資料庫:Connection refused

Connection refused通常是有連到DB,但是登入user/password 錯誤,所以回應 refused(拒絕).這時候就先不往 網路/防火牆...

Python 索引錯誤:list indices must be integers or slices, not dict

listData = [{'ProductNo': 'P00001'}, {'ProductNo': 'P00002'},...

下架 求助帖

https://docs.microsoft.com/zh-tw/dotnet/core/install/macos

<<Pointer>> _HakerRank_C++_Introduction

我查了一下你標題裡的 HakerRanker, Google 建議改成 HackerRank.

leetcode with python:412. Fizz Buzz

x = [ 'Fizz' * (n % 3 == 0) + 'Buzz' * (n % 5 == 0) or str(n) for n in range(1,4...

[SwiftUI] 如何統計數字重複的次數

#!/usr/bin/swift let arr = [2, 1, 2, 3, 5, 6, 8, 9] let counts = arr.reduce(in...

Test / Validation 對中文使用者的困惑

好文! 有空還是要回來巡一下田水.

Golang - 不用for迴圈,利用遞迴反轉字串

package main import ( "fmt" ) func reverseStrRecursion(input strin...

SQL語法疑問?

create table it0418 ( pno char(1) not null , price int not null ); insert int...