Tagged articles
4 articles
Page 1 of 1
Baidu Geek Talk
Baidu Geek Talk
Jun 26, 2024 · Artificial Intelligence

Build a Conversational 24‑Point Game with Baidu AppBuilder’s AI Agent

This guide walks through the complete workflow of creating an AI‑native 24‑point game using Baidu Cloud's AppBuilder, covering the three‑step methodology, Agent architecture, component design, custom workflow implementation, and practical tips for optimal model selection.

24-point gameAI native appAgent Architecture
0 likes · 14 min read
Build a Conversational 24‑Point Game with Baidu AppBuilder’s AI Agent
Sohu Tech Products
Sohu Tech Products
Jul 6, 2022 · Game Development

Implementing Hint Functionality for a 24‑Point Game in Swift

This article explains how to design and code a hint feature for a 24‑point puzzle app on iOS, covering random number generation, validation of solvable sets, recursive expression search, expression‑to‑string conversion, optimization of parentheses, and provides complete Swift source code with detailed algorithmic explanations.

24-point gameGame DevelopmentSwift
0 likes · 15 min read
Implementing Hint Functionality for a 24‑Point Game in Swift
Python Programming Learning Circle
Python Programming Learning Circle
May 27, 2020 · Fundamentals

Solving the 24‑Point Game with Python: Two Algorithmic Approaches

This article explains how to determine whether any four playing cards can be combined using addition, subtraction, multiplication, and division (with parentheses) to reach 24, presenting two Python implementations—an exhaustive enumeration method and a more efficient recursive combination technique—along with performance comparisons.

24-point gameEnumerationRecursive
0 likes · 8 min read
Solving the 24‑Point Game with Python: Two Algorithmic Approaches