
Redis 高度なキー管理
この実験(Lab)では、Redis の高度なキー管理テクニックを学びます。RENAME でキーの名前を変更し、MOVE でデータベース間でキーを移動し、MSET で複数のキーを設定し、MGET で複数のキーを取得し、SCAN で効率的にキーを反復処理する方法を習得します。
Redis

Compute Powers and Exponents in C
Learn to calculate mathematical powers in C using loops and built-in pow() function, exploring different methods of exponentiation.
C

Compute the Circumference of a Circle in C
Learn to calculate circle circumference using C programming, demonstrating basic mathematical operations and fundamental geometric calculations.
C

C 言語で線形回帰パラメータを計算する
データポイントから傾きと切片を計算することで、C 言語で線形回帰アルゴリズムを実装し、統計的な計算手法を実証します。
C

Compute Inverse Sine (arcsin) in C
Learn to calculate the inverse sine (arcsin) function in C programming, demonstrating trigonometric calculations with the asin() function.
C

SQLite での特定データのクエリ (Query Specific Data in SQLite)
このチャレンジ (challenge) では、SQL スキルを活用して、`treasure.db` という名前の SQLite データベース内の特定のデータをクエリ (query) します。目標は、アーティファクト (artifact) の `id` に基づいて結果をフィルタリング (filtering) する `SELECT` ステートメント (statement) を作成して、隠されたアーティファクトを取得することです。データベース (database) に接続し、`artifacts` テーブル (table) から `name` カラム (column) を選択するクエリ (query) を記述し、`WHERE` 句を使用して `id` が 2 のアーティファクトを識別します。
SQLite

C言語で行列の逆行列を計算する
C言語プログラミングにおいて、随伴行列と行列式の方法を使って行列の逆行列を計算する方法を学び、線形代数の計算技術を示す。
C

Compute the Pearson Correlation Coefficient in C
Learn to calculate Pearson correlation coefficient using C programming, demonstrating statistical data analysis techniques and mathematical computation skills.
C

Compute Permutations (nPr) in C
Learn to calculate permutations using C programming, exploring factorial computation and combination techniques for solving mathematical problems.
C

Compute the Interquartile Range (IQR) in C
Learn to calculate the Interquartile Range (IQR) in C by sorting an array and finding the difference between Q1 and Q3 quartiles.
C

Compute the Dot and Cross Product in C
Learn to implement dot and cross product calculations for vectors in C programming, exploring fundamental linear algebra operations and vector mathematics.
C

Compute the Coefficient of Determination (R²) in C
Learn to calculate R² statistic in C programming, demonstrating linear regression analysis and variance computation for statistical model evaluation.
C

Compute the Perimeter of a Polygon in C
Learn to calculate the perimeter of a polygon by reading side lengths into an array and summing them up using C programming techniques.
C

Compute the Area of a Trapezoid in C
Learn to calculate the area of a trapezoid using C programming, covering input, mathematical computation, and result display for geometric calculations.
C

Compute Factorials in C
Learn to calculate factorial values using loops and recursion in C programming, exploring mathematical computation techniques for combinatorial problems.
C

Compute the Median of a Dataset in C
Learn to calculate the median of a dataset using C programming, covering array sorting, element selection, and statistical computation techniques.
C

Compute Sine of an Angle in C
Learn to calculate sine values in C by using the sin() function from math.h library, converting angles to radians, and displaying trigonometric results.
C

Compute Inverse Tangent (arctan) in C
Learn to calculate inverse tangent using C's atan() function, converting real numbers to angular measurements in radians.
C